home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 9825 / 9825.xpi / chrome / content / message_window.xul < prev    next >
Extensible Markup Language  |  2009-07-17  |  1KB  |  32 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://smarterwiki/locale/smarterwiki.dtd">
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  6. <?xml-stylesheet href="chrome://smarterwiki/content/smarterwiki.css" type="text/css"?>
  7.  
  8.  
  9. <window id="SW_PopupMessage" 
  10.         title="Message"
  11.         persist="screenX screenY"
  12.         spacerflex="1"
  13.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  14.  
  15.     <stringbundleset id="stringbundleset">
  16.         <!--
  17.         For some reason the id must be exactly that or it will fail :(
  18.         -->
  19.         <stringbundle id="smarterwiki_strings" 
  20.                       src="chrome://smarterwiki/locale/strings.properties"/>
  21.     </stringbundleset>
  22.  
  23.     <script type="application/x-javascript"
  24.             src="chrome://smarterwiki/content/jquery-1.2.6.js" />
  25.     <script type="application/x-javascript" src="message_window.js" />
  26.  
  27.     <vbox minheight="30">
  28.         <separator orient="vertical" flex="1"/>
  29.         <label id="message-label" value="message" class="header" />
  30.         <separator orient="vertical" flex="1"/>
  31.     </vbox>
  32. </window>